Name Property (InfoStore Object)
The Name
property returns the name of the InfoStore object as a string. The string
Public Folders is the name of the InfoStore object that contains the public
folders. Read-only.
Syntax
objInfoStore.Name
Data Type
String
Remarks
The Name
property corresponds to the MAPI property PR_DISPLAY_NAME.
The Name
property is the default property of an InfoStore object, meaning that InfoStore
is syntactically equivalent to InfoStore.Name in Visual Basic code.
Example
Dim objInfoStore As Object ' assume valid InfoStore object
MsgBox "InfoStore name = " &
objInfoStore.Name
See Also
GetInfoStore Method (Session Object)